home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / FROMUTS / UNIXLIB37B / src / c / errno < prev    next >
Text File  |  1991-09-22  |  289b  |  20 lines

  1. #ifdef ARCH
  2.  
  3. #ifdef __STDC__
  4. static char sccs_id[] = "@(#) errno.c 1.3 "__DATE__" HJR";
  5. #else
  6. static char sccs_id[] = "@(#) errno.c 1.3 26/9/90 HJR";
  7. #endif
  8.  
  9. /* errno.c (c) Copyright 1990 H.Rogers */
  10.  
  11. #include <errno.h>
  12.  
  13. #ifdef __STDC__
  14. volatile int errno;
  15. #else
  16. int errno;
  17. #endif
  18.  
  19. #endif
  20.